home *** CD-ROM | disk | FTP | other *** search
/ The Sunday Times: The Month 2003 December / The Sunday Times - The Month 2003-12.iso / pc / engine / shell / shell.swf / scripts / DefineButton2_45 / BUTTONCONDACTION on(press).as next >
Encoding:
Text File  |  2003-11-10  |  229 b   |  13 lines

  1. on(press){
  2.    this.startDrag(false,4,0,_parent.DRAG_WIDTH,0);
  3.    lastX = _X;
  4.    this.onEnterFrame = function()
  5.    {
  6.       if(lastX != _X)
  7.       {
  8.          _parent.onKnobMoved(_X);
  9.          lastX = _X;
  10.       }
  11.    };
  12. }
  13.